blob: 467f2bdbcf97a80547f15b40356683d1326b80ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
import * as React from "react";
import Link from "next/link";
import { Metadata } from "next";
import { getServerSession } from "next-auth/next";
import { authOptions } from "@/app/api/auth/[...nextauth]/route";
import { Button } from "@/components/ui/button";
import { LogIn } from "lucide-react";
import { Shell } from "@/components/shell";
import { InformationButton } from "@/components/information/information-button"
import { VendorQuotationsTable } from "@/lib/techsales-rfq/vendor-response/table/vendor-quotations-table";
import { useTranslation } from "@/i18n";
export const metadata: Metadata = {
title: "기술영업 해양TOP RFQ 관리",
description: "기술영업 해양TOP RFQ를 관리합니다.",
};
export default async function VendorQuotationsTopPage(props: { params: { lng: string } }) {
const { lng } = props.params
const { t } = await useTranslation(lng, 'menu')
// 세션 확인
const session = await getServerSession(authOptions);
if (!session?.user) {
return (
<Shell>
<div className="flex min-h-[400px] flex-col items-center justify-center space-y-4">
<div className="text-center">
<h2 className="text-2xl font-bold tracking-tight">로그인이 필요합니다</h2>
<p className="text-muted-foreground">
견적서를 확인하려면 로그인해주세요.
</p>
</div>
<Button asChild>
<Link href="/api/auth/signin">
<LogIn className="mr-2 h-4 w-4" />
로그인
</Link>
</Button>
</div>
</Shell>
);
}
// 벤더 ID 확인 (사용자의 회사 ID가 벤더 ID)
const vendorId = session.user.techCompanyId;
if (!vendorId) {
return (
<Shell>
<div className="flex min-h-[400px] flex-col items-center justify-center space-y-4">
<div className="text-center">
<h2 className="text-2xl font-bold tracking-tight">기술영업 벤더 정보가 없습니다</h2>
<p className="text-muted-foreground">
기술영업 벤더 정보가 없습니다. 관리자에게 문의하세요.
</p>
</div>
</div>
</Shell>
);
}
// 견적서 상태별 개수 조회
return (
<Shell variant="fullscreen" className="h-full">
{/* 고정 헤더 영역 */}
<div className="flex-shrink-0">
<div className="flex-shrink-0 flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
<div>
<div className="flex items-center gap-2">
<h1 className="text-2xl font-bold tracking-tight">{t('menu.vendor.sales.offshore_top_rfq')}</h1>
<InformationButton pagePath="partners/techsales/rfq-offshore-top" />
</div>
<p className="text-muted-foreground">
{t('menu.vendor.sales.offshore_top_rfq_desc')}
</p>
</div>
</div>
{/* 견적서 테이블 */}
<div className="flex-1 min-h-0 overflow-hidden">
<div className="h-full overflow-auto">
<VendorQuotationsTable vendorId={vendorId.toString()} rfqType="TOP" />
</div>
</div>
</div>
</Shell>
);
}
|